go.uber.org/zap/zapcore.jsonEncoder.AppendInt64 (method, view implemented interface methods)
8 uses
go.uber.org/zap/zapcore (current package)
json_encoder.go#L151: enc.AppendInt64(val)
json_encoder.go#L273: enc.AppendInt64(int64(val))
json_encoder.go#L277: func (enc *jsonEncoder) AppendInt64(val int64) {
json_encoder.go#L314: enc.AppendInt64(val.UnixNano())
json_encoder.go#L336: func (enc *jsonEncoder) AppendInt(v int) { enc.AppendInt64(int64(v)) }
json_encoder.go#L337: func (enc *jsonEncoder) AppendInt32(v int32) { enc.AppendInt64(int64(v)) }
json_encoder.go#L338: func (enc *jsonEncoder) AppendInt16(v int16) { enc.AppendInt64(int64(v)) }
json_encoder.go#L339: func (enc *jsonEncoder) AppendInt8(v int8) { enc.AppendInt64(int64(v)) }
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |